home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / do_pwc < prev    next >
Encoding:
Text File  |  1992-06-25  |  658 b   |  29 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. crack_arch=$1
  13.  
  14. if [ ! -d $crack_arch ]
  15. then
  16.     Scripts/do_install $crack_arch || exit 1
  17. fi
  18.  
  19. cd $crack_arch || exit 1                        # Can we get there from here ?
  20.  
  21. ###
  22. # Make the password cracker
  23. ###
  24.  
  25. make crack-pwc || exit 1
  26.  
  27. # bye bye
  28. exit 0
  29.